home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / lists / mint / l_1199 / 1783 < prev    next >
Encoding:
Internet Message Format  |  1994-08-27  |  1.5 KB

  1. Date: Thu, 28 Jul 1994 13:17:36 +0200 (MET DST)
  2. From: Robert Krenn <d93rkr@tex13.hfb.se>
  3. Subject: [PATCH] Wich patchlevel?! 
  4. To: mint@atari.archive.umich.edu
  5. Message-Id: <Pine.3.89.9407281343.A27280-0100000@tex13>
  6. Mime-Version: 1.0
  7.  
  8. This little patch fixes the anoying version problem!?
  9. It simply shows the megapatch level in the welcome message of MiNT!
  10.  
  11. I, and maybe others, would appreciate if mr MEGAPATCH would change the 
  12. patchlevel in version.h when he releases a new megapatch.
  13.  
  14. ----
  15. d93rkr@t.hfb.se   (Robert Krenn)     _/_/_/ _/_/_/ _/_/_/ _/_/   _/ LYNX
  16. tel: +46-243224839                  _/  _/   _/   _/  _/ _/  _/ _/ STm
  17. University of Borlange, Sweden     _/_/_/   _/   _/_/_/ _/_/   _/ STe
  18. Finger me for my public PGP-Key   _/  _/   _/   _/  _/ _/  _/ _/ F-030
  19.  
  20.  
  21. This patch is relative to megapatch h7.
  22.  
  23. -------8<--------- cut --------------
  24.  
  25. --- raw_mint//main.c    Wed Jul 27 21:24:36 1994
  26. +++ mint//main.c    Wed Jul 27 21:21:36 1994
  27. @@ -679,7 +679,7 @@
  28.  
  29.  /* greetings */
  30.      Cconws(greet1);
  31. -    ksprintf(buf, VERS_STRING, MAJ_VERSION, MIN_VERSION);
  32. +    ksprintf(buf, VERS_STRING, MAJ_VERSION, MIN_VERSION,PATCH_LEVEL);
  33.      Cconws(buf);
  34.      Cconws(greet2);
  35.  
  36. --- raw_mint//version.h    Wed Sep 15 00:09:00 1993
  37. +++ mint//version.h    Wed Jul 27 21:21:36 1994
  38. @@ -1,12 +1,13 @@
  39.  #define MAJ_VERSION    1
  40.  #define MIN_VERSION    10
  41. +#define PATCH_LEVEL    "h7"
  42.  
  43.  #ifndef MULTITOS
  44.  #define BETA
  45.  #endif
  46.  
  47.  #ifdef BETA
  48. -#define VERS_STRING    "%d.%02d BETA"
  49. +#define VERS_STRING    "%d.%02d%s BETA"
  50.  #else
  51. -#define VERS_STRING    "%d.%02d"
  52. +#define VERS_STRING    "%d.%02d%s"
  53.  #endif
  54.  
  55.  
  56.  
  57.  
  58.